home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / nr3_tech.zip / TABLES.TXT < prev    next >
Text File  |  1993-06-18  |  2KB  |  35 lines

  1. Loading DOS tables into upper memory.
  2.  
  3. DOS contains a series of tables that are used to store
  4. various data structures that DOS itself uses.  These include
  5. the FILES, BUFFERS, FCBS, Drive Tables (LASTDRIVE), DOS
  6. STACKs, DOS internal stacks, and DOS's internal data areas.
  7.  
  8. Wwhen they developed DOS 5, Microsoft decided to leave all
  9. these tables in conventional memory.  This was a wise
  10. decision as is evidenced by DOS 5's wide ranging
  11. compatibility.
  12.  
  13. Memory managers, including our own Netroom, allow you to
  14. load some or all of these tables in upper memory.  However,
  15. in many instances this is not entirely safe.  Many Networks
  16. (including Novell) expect both DOS tables and COMMAND.COM to
  17. be placed below themselves in conventional memory.  This is
  18. not, generally speaking, a real technical requirement, but
  19. rather an assumption made by the developers of the Networks.
  20.  
  21. For this reason, our Customize utility provides the ability
  22. to disable the loading of FILES and FCBs high, and in a
  23. network environment we do not load COMMAND.COM high by
  24. default, and we don't actually re-locate DOS's STACKs--we
  25. set them to 0 and substitute our own equivalent.
  26.  
  27. If you are running into compatibility problems, or you have
  28. odd behavior from a Network re-director or a hard disk
  29. driver you should disable any loading of DOS tables into
  30. upper memory.  The memory loss is insignificant when
  31. compared to the increased stability of your system.
  32.  
  33. Copyright (c) 1993, Helix Software Co., Inc.
  34.  
  35.